Skip to content

feat(lastcode): bootstrap isolated nightly fork workflow - #1

Merged
lastobelus merged 16 commits into
lastcode/mainfrom
t3code/adhoc-signing
Aug 12, 2026
Merged

feat(lastcode): bootstrap isolated nightly fork workflow#1
lastobelus merged 16 commits into
lastcode/mainfrom
t3code/adhoc-signing

Conversation

@lastobelus

@lastobelus lastobelus commented Aug 10, 2026

Copy link
Copy Markdown
Owner

Problem

LastCode needs to remain a small personal fork that can run beside T3 Code, follow every upstream nightly without losing its fork commits, and produce optional local ad-hoc-signed builds without relying on hosted CI or an Apple Developer subscription. The fork also needs durable branding and operator documentation that are unlikely to conflict with upstream changes.

Solution

  • isolate LastCode's Electron profile, application IDs, URL schemes, state directory, single-instance lock, and update behavior from T3 Code
  • add the themed LastCode wordmark, temporary app mark, app icons, and favicons under a fork-owned asset root with dev, nightly, and prod variants
  • add an exact-commit local CI gate, pre-push quick gate, and guarded squash-merge command
  • checkpoint every upstream nightly as an immutable lastcode/checkpoint/<upstream-tag> tag while rebasing the complete fork stack in an isolated worktree
  • promote rebased checkpoints to lastcode/main only when no pull request is open
  • require checkpoint-bound full-CI provenance before an ad-hoc macOS build, then emit a manifest, SHA-256 checksums, and a numbered build tag
  • add an opt-in hourly/login launchd service for checkpoint automation
  • place LastCode-specific runbooks and conventions under docs/lastcode/
  • sanitize repository-local Git variables from nested Git and CI subprocesses so hooks and temporary-repository tests remain isolated

Impact

LastCode and T3 Code can run simultaneously. Every upstream nightly can be recorded even when no LastCode build is ready, while selected checkpoints can later become reproducible local releases. Hosted release jobs are disabled for the fork; releases remain deliberate, local, and ad hoc.

Validation

  • exact-commit full local CI passed on 77b716527cd64f7253afe2c71d596d3f1319e769
  • all workspace formatting and lint checks passed
  • all workspace typechecks passed
  • workspace tests passed, including 1,984 server tests (7 skipped) and 2,004 desktop tests
  • desktop production build and preload assertions passed
  • Rust resource-monitor formatting and 15 tests passed
  • SwiftLint, ktlint, and detekt passed for mobile native sources
  • release smoke passed from a frozen install
  • the normal pre-push quick gate passed under Git's hook environment
  • the LastCode desktop build was launched and manually verified with its sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.

@github-actions github-actions Bot added vouch:trusted PR author is trusted by repo permissions or the VOUCHED list. size:L labels Aug 10, 2026
@github-actions

Copy link
Copy Markdown

Thread transfer impact

⚠️ The latest CI run did not produce a thread transfer result for a6575a8.

This comment will update automatically after the next completed run.

@lastobelus
lastobelus force-pushed the t3code/adhoc-signing branch from 58d53c1 to 77b7165 Compare August 12, 2026 07:15
@lastobelus lastobelus changed the title Isolate LastCode desktop runtime from T3 Code feat(lastcode): bootstrap isolated nightly fork workflow Aug 12, 2026
@lastobelus
lastobelus marked this pull request as ready for review August 12, 2026 07:15
@lastobelus
lastobelus merged commit cfe3f0d into lastcode/main Aug 12, 2026
@lastobelus
lastobelus deleted the t3code/adhoc-signing branch August 12, 2026 07:16

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 77b716527c

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +147 to +153
const candidateRef =
sourceCheckpoint &&
sourceCheckpoint.commit === input.sourceCommit &&
latestCheckpoint &&
sourceCheckpoint.nightly.tag !== latestCheckpoint.nightly.tag
? latestCheckpoint.checkpointTag
: input.sourceRef;

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Rebase merged changes onto the newest checkpoint

When a checkpoint is created while a PR is open, then that PR is merged into the older lastcode/main, sourceCommit no longer equals the source checkpoint commit, so this selects input.sourceRef rather than the newer checkpoint. Because resolveUncheckpointedNightlies also excludes the already-checkpointed nightly, the subsequent run has no missing nightly to rebase and promotes the older-base branch unchanged; the documented follow-up promotion therefore never incorporates both the merged PR and the latest upstream checkpoint until another upstream nightly appears. The plan needs to replay the source changes onto the newest checkpoint in this case.

Useful? React with 👍 / 👎.

lastobelus added a commit that referenced this pull request Aug 12, 2026
## Problem

LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

## Solution

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

## Impact

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

## Validation

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 12, 2026
## Problem

LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

## Solution

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

## Impact

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

## Validation

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 13, 2026
## Problem

LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

## Solution

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

## Impact

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

## Validation

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 14, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 15, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 16, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 16, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 16, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 17, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 17, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 17, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 17, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 18, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 19, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 19, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 19, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 22, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 22, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 22, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 22, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 23, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 23, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 24, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Aug 24, 2026
LastCode needs to remain a small personal fork that can run beside T3
Code, follow every upstream nightly without losing its fork commits, and
produce optional local ad-hoc-signed builds without relying on hosted CI
or an Apple Developer subscription. The fork also needs durable branding
and operator documentation that are unlikely to conflict with upstream
changes.

- isolate LastCode's Electron profile, application IDs, URL schemes,
state directory, single-instance lock, and update behavior from T3 Code
- add the themed LastCode wordmark, temporary app mark, app icons, and
favicons under a fork-owned asset root with dev, nightly, and prod
variants
- add an exact-commit local CI gate, pre-push quick gate, and guarded
squash-merge command
- checkpoint every upstream nightly as an immutable
`lastcode/checkpoint/<upstream-tag>` tag while rebasing the complete
fork stack in an isolated worktree
- promote rebased checkpoints to `lastcode/main` only when no pull
request is open
- require checkpoint-bound full-CI provenance before an ad-hoc macOS
build, then emit a manifest, SHA-256 checksums, and a numbered build tag
- add an opt-in hourly/login launchd service for checkpoint automation
- place LastCode-specific runbooks and conventions under
`docs/lastcode/`
- sanitize repository-local Git variables from nested Git and CI
subprocesses so hooks and temporary-repository tests remain isolated

LastCode and T3 Code can run simultaneously. Every upstream nightly can
be recorded even when no LastCode build is ready, while selected
checkpoints can later become reproducible local releases. Hosted release
jobs are disabled for the fork; releases remain deliberate, local, and
ad hoc.

- exact-commit full local CI passed on
`77b716527cd64f7253afe2c71d596d3f1319e769`
- all workspace formatting and lint checks passed
- all workspace typechecks passed
- workspace tests passed, including 1,984 server tests (7 skipped) and
2,004 desktop tests
- desktop production build and preload assertions passed
- Rust resource-monitor formatting and 15 tests passed
- SwiftLint, ktlint, and detekt passed for mobile native sources
- release smoke passed from a frozen install
- the normal pre-push quick gate passed under Git's hook environment
- the LastCode desktop build was launched and manually verified with its
sidebar wordmark, menu-bar name, isolated runtime, and app icon

Implemented with GPT-5.6-Sol through the Codex harness in T3 Code.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:L vouch:trusted PR author is trusted by repo permissions or the VOUCHED list.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant